myvar_0 = GetPrimitiveParameter(0)
myvar_1 = Neighborhood["new"]()
	if (myvar_1["isValidLot"](myvar_1, myvar_0) ~= 1) then 


	print("Invalid Lot ID specified.")
	SetScriptReturnValue(False)
	return 
end
	if (nBusiness["LotHasBusiness"](myvar_0) == False) then
	print("Creating a business on lot ", myvar_0)
		if (nBusiness["CreateBusiness"](myvar_0) ~= 0) then 


		SetScriptReturnValue(True)
		return 
	else
		SetScriptReturnValue(False)
		return 
	else
		print("There is already a business associated with lot ", myvar_0)
		local myvar_3 = True
		SetScriptReturnValue(myvar_3)
		return 
	end
end
